home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / e / mailinglists / amigae.0294feb.archive / 000041_donews!crash!e…af.mil!mckinnej_Sat, 12 Feb 94 01:39:58 PST.msg < prev    next >
Internet Message Format  |  1994-05-26  |  8KB

  1. Received: by bkhouse.cts.com (V1.17-beta/Amiga)
  2.       id <1t63@bkhouse.cts.com>; Sat, 12 Feb 94 01:39:58 PST
  3. Received: from crash by donews.cts.com with uucp
  4.     (Smail3.1.28.1 #18) id m0pV9E2-0001PDC; Fri, 11 Feb 94 20:32 EST
  5. Received: from emh.kadena.af.mil by crash.cts.com with smtp
  6.     (Smail3.1.28.1 #18) id m0pV8km-0000WSC; Fri, 11 Feb 94 17:02 PST
  7. Received: by emh.kadena.af.mil (5.60 pl1/25-eef)
  8.     id AA00782; Sat, 12 Feb 94 09:51:56 JST
  9. Message-Id: <9402120951.AA00782@emh.kadena.af.mil>
  10. Date: Sat, 12 Feb 1994 09:51:46 +0000 (JST)
  11. In-Reply-To: <01H8OY3HOZEQ8ZHX49@delphi.com> from "NES@delphi.com" at Feb 9, 94 07:17:35 pm
  12. Content-Type: text
  13. Content-Length: 933
  14. From: James Mckinney <mckinnej@emh.kadena.af.mil>
  15. To: AmigaE@bkhouse.cts.com
  16. Subject: Re: MUI tools help
  17.  
  18. Hi Eric,
  19.  
  20. > I am having trouble useing the Gadtoolsbox.  I can create a window and I 
  21. > can covert it to e with sourcegen.  My problem is..... I need some 
  22. > examples on how to read/write to the gadgets.  Is thier a command like
  23. > "getgadinfo" or "putgadinfo"?
  24.  
  25. Not quite sure what you are asking for, but I'll give it a shot.
  26.  
  27. If you are looking for an example of how to interpret and act upon gadget
  28. selections, ftp the file "Spotlite.lha".  It's in the dev/e directory on
  29. the Aminet sites (ftp.wustl.edu is the main site).
  30.  
  31. If you're trying to change the gadget text, I'm not sure if you can do 
  32. that under gadtools (there are several dissappointing limitations on 
  33. gagtools gadgets as I've found out over the last few days).  You may have 
  34. to use a regular Intuition gadget.  (I could be wrong here.  I've been 
  35. messing with BOOPSI gadgets too and I might have mixed them up.  Yet 
  36. another sign of old age. B-)
  37.  
  38. Later,
  39.  
  40.      Jim
  41. From donews!crash!fwi.uva.nl!oortmers Sat, 12 Feb 94 01:41:08 PST
  42. Received: by bkhouse.cts.com (V1.17-beta/Amiga)
  43.       id <1t7d@bkhouse.cts.com>; Sat, 12 Feb 94 01:41:08 PST
  44. Received: from crash by donews.cts.com with uucp
  45.     (Smail3.1.28.1 #18) id m0pVAbH-0001PEC; Fri, 11 Feb 94 22:00 EST
  46. Received: from mail.fwi.uva.nl by crash.cts.com with smtp
  47.     (Smail3.1.28.1 #18) id m0pVABJ-00001iC; Fri, 11 Feb 94 18:34 PST
  48. Received: from gene.fwi.uva.nl by mail.fwi.uva.nl with SMTP (5.65c/5.1)
  49.           id AA08159; Sat, 12 Feb 1994 03:33:59 +0100
  50. Received: by gene.fwi.uva.nl
  51.           id AA16276; Sat Feb 12 03:33:52 1994
  52. Message-Id: <199402120233.AA16276@gene.fwi.uva.nl>
  53. Date: Sat, 12 Feb 1994 03:33:52 +0100
  54. Return-Path: <oortmers@fwi.uva.nl>
  55. X-Organisation: Faculty of Mathematics & Computer Science
  56.                 University of Amsterdam
  57.                 Plantage Muidergracht 24
  58.                 NL-1018 TV Amsterdam
  59.                 The Netherlands
  60. X-Phone:        +31 20 525 5200
  61. X-Telex:        16460 facwn nl
  62. X-Fax:          +31 20 525 5101
  63. From: oortmers@fwi.uva.nl (Wouter van Oortmerssen (Alfa_Inf92))
  64. To: AmigaE@bkhouse.cts.com
  65. Subject: various
  66.  
  67.  
  68. [various stuff]
  69.  
  70. -> Will E 3.0 have proper float support?
  71.  
  72. depends on what you call 'proper', but yes, it will have operators
  73. that work on floats etc. in the language.
  74.  
  75. -> Does anyone have some good example sources that show how to use
  76. -> "|" in E?  The only sample program that uses it is 'ReWriteGfx'
  77. -> and I can't make heads or tails of its use in that program...
  78.  
  79. "|" was the float convertion operator in <2.1a, and shortly before
  80. release I decided I didn't like floats like this in E, so I removed
  81. the documentation about floats. Not many people know this, but
  82. v2.1 actually has floats implemented, but a bit silly if you ask me.
  83.  
  84. -> Wish List Addendum...
  85. -> -No size/element limit on constant structures, lists, arrays.. E is a
  86. -> dynamic language, why is there a limit on something so silly?
  87.  
  88. well, yes [] lists and typed list should be able to get longer in the
  89. future. If you trouble with the current limits just because you want to
  90. have a large amount of data in your program, I might advice to use INT
  91. (as statement) or INCBIN or something similar.
  92.  
  93. -> -Real keyword/constant checking! I want to be able to start my
  94. -> functions/variables in uppercase if I so desire! (You wouldn't believe the
  95. -> problems this is causing with converting Angband to E!) Anything else is
  96. -> just cheaping out to keep compiler speed. Come on!
  97.  
  98. This is a false assumption many people have made. Those contrains
  99. were introduced into E because I wanted to enforce a common style of
  100. identifiers to make sources more readable. infact, with techniques like
  101. hashing the compiler uses, the speed difference would not be noticable.
  102.  
  103. -> pound sand up his arse and go to the C mailing list! }:-/
  104.  
  105. now come on barry! no cursing on this list :-) Be nice to people!
  106.  
  107. Wouter
  108.  
  109.    ____  Wouter van Oortmerssen, Wouter@alf.let.uva.nl
  110.   / __/  "Nobody with a good car needs to be justified"
  111.  / __/      -Ministry, Jesus built my hotrod
  112. /___/    E mailing list: amigae-request@bkhouse.cts.com
  113. From donews!crash!freenet.carleton.ca!ao443 Sat, 12 Feb 94 01:41:28 PST
  114. Received: by bkhouse.cts.com (V1.17-beta/Amiga)
  115.       id <1t7m@bkhouse.cts.com>; Sat, 12 Feb 94 01:41:28 PST
  116. Received: from crash by donews.cts.com with uucp
  117.     (Smail3.1.28.1 #18) id m0pVB5L-0001Q0C; Fri, 11 Feb 94 22:31 EST
  118. Received: from freenet-news.carleton.ca by crash.cts.com with smtp
  119.     (Smail3.1.28.1 #18) id m0pVAjN-00003hC; Fri, 11 Feb 94 19:09 PST
  120. Received: from freenet.carleton.ca by freenet-news.carleton.ca (4.1/SMI-4.0)
  121.     id AA15552; Fri, 11 Feb 94 22:09:38 EST
  122. Received: from localhost (ao443@localhost) by freenet.carleton.ca (8.6.4/8.6.4) id WAA24449; Fri, 11 Feb 1994 22:09:10 -0500
  123. Date: Fri, 11 Feb 1994 22:09:10 -0500
  124. Message-Id: <199402120309.WAA24449@freenet.carleton.ca>
  125. Reply-To: ao443@freenet.carleton.ca
  126. From: ao443@freenet.carleton.ca (Jason Maskell)
  127. To: AmigaE@bkhouse.cts.com
  128. Subject: Re: PROBLEMS....PROBLEMS...PROBLEMS
  129.  
  130. >   I got my proc to draw the maps working right. I had to change my info.
  131. >from hex to decimal. I also found my function to raise a number to a 
  132. >power (Shl()). With this I was able to leave out about 60 IF statements.
  133.  
  134.     60 Ifs? My god man. Why did you not just write up a function to do
  135. it?
  136. (off the top of my head)
  137. PROC exponent(num,pow)
  138.     DEF result=0,a
  139.     FOR a:=0 TO pow
  140.         result:=result*result
  141.     ENDFOR
  142. ENDPROC a
  143. Unless I've totally gone bonkers that should return num^pow. (this really
  144. should be included as an operator in high level languages)
  145.  
  146. >as movement, so that by pressing 8 the character would move towards the 
  147. >top of the screen. This worked fine the first time I entered an 8, but
  148. >when I entered another 8 I got a guru  $8000 0003.
  149. >
  150.     Hmm.. well, this information does not help when dealing with a
  151. guru. Either post the code, or if you don't want to, email it to me and
  152. I'll take a look at it. Most people's E programming bugs are usually just
  153. misconceptions about how E works, or how some function works. It's
  154. probably something really simple, and thus the hardest kind to spot.
  155.  
  156. >   Another question that I have is, how do I set the palette for my screen
  157. >and how to give it that 2.0'ish look. I want windows and cons to look the
  158. >way they did when I was opening them on the workbench screen. I will use
  159. >the colors that I have on my workbench, but I need to know how to set 
  160. >them on my screen.
  161. >
  162.     Haven't played with screen for a while.. I assume you are using
  163. 2.0+? If not, well, kiss the 2.0 look goodbye without a lot of work. I'll
  164. lookup how to do it when I get home tonight and post it next time.
  165.  
  166.  
  167. --
  168. 'You see son, if this were Star Trek, we'd be negotiating with this Kobold.'
  169. - Unknown Angband Player